home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / WINPROGS.ARJ / CHECKER1.H < prev    next >
Text File  |  1990-11-23  |  3KB  |  55 lines

  1. /*    SYSMETS.H   --   System Metrics Display Structure   */
  2.  
  3. #define NUMLINES (sizeof sysmetrics / sizeof sysmetrics [0])
  4.  
  5. struct 
  6.   {
  7.   int   nIndex;
  8.   char  *szLabel;
  9.   char  *szDesc;
  10.   }
  11.   
  12.   sysmetrics [] =
  13.   {
  14.   SM_CXSCREEN,      "SM_CXSCREEN",      "Screen width in pixels",
  15.   SM_CYSCREEN,      "SM_CYSCREEN",      "Screen height in pixels",
  16.   SM_CXVSCROLL,     "SM_CXVSCROLL",     "Vertical scroll arrow width",
  17.   SM_CYHSCROLL,     "SM_CYHSCROLL",     "Horizontal scroll arrow height",
  18.   SM_CYCAPTION,     "SM_CYCAPTION",     "Caption bar height",
  19.   SM_CXBORDER,      "SM_CXBORDER",      "Border width",
  20.   SM_CYBORDER,      "SM_CYBORDER",      "Border height",
  21.   SM_CXDLGFRAME,    "SM_CXDLGFRAME",    "Dialog window frame width",
  22.   SM_CYDLGFRAME,    "SM_CYDLGFRAME",    "Dialog window frame height",
  23.   SM_CYVTHUMB,      "SM_CYVTHUMB",      "Vertical scroll thumb height",
  24.   SM_CXHTHUMB,      "SM_CXHTHUMB",      "Horizontal scroll thumb width",
  25.   SM_CXICON,        "SM_CXICON",        "Icon width",
  26.   SM_CYICON,        "SM_CYICON",        "Icon Height",
  27.   SM_CXCURSOR,      "SM_CXCURSOR",      "Cursor Width",
  28.   SM_CYCURSOR,      "SM_CYCURSOR",      "Cursor Height",
  29.   SM_CYMENU,        "SM_CYMENU",        "Menu bar height",
  30.   SM_CXFULLSCREEN,  "SM_CXFULLSCREEN",  "Full-screen client window width",
  31.   SM_CYFULLSCREEN,  "SM_CYFULLSCREEN",  "Full-screen client window height",
  32.   SM_CYKANJIWINDOW, "SM_CYKANJIWINDOW", "Kanji window height",
  33.   SM_MOUSEPRESENT,  "SM_MOUSEPRESENT",  "Mouse present flag",
  34.   SM_CYVSCROLL,     "SM_CYVSCROLL",     "Vertical scroll arrow height",
  35.   SM_CXHSCROLL,     "SM_CXHSCROLL",     "Horizontal scroll arrow width",
  36.   SM_DEBUG,         "SM_DEBUG",         "Debug version flag",
  37.   SM_SWAPBUTTON,    "SM_SWAPBUTTON",    "Mouse buttons swapped flag",
  38.   SM_RESERVED1,     "SM_RESERVED1",     "Reserved",
  39.   SM_RESERVED2,     "SM_RESERVED2",     "Reserved",
  40.   SM_RESERVED3,     "SM_RESERVED3",     "Reserved",
  41.   SM_RESERVED4,     "SM_RESERVED4",     "Reserved",
  42.   SM_CXMIN,         "SM_CXMIN",         "Minimum window width",
  43.   SM_CYMIN,         "SM_CYMIN",         "Minimum window height",
  44.   SM_CXSIZE,        "SM_CXSIZE",        "Minimum/maximum icon width",
  45.   SM_CYSIZE,        "SM_CYSIZE",        "Minimum/maximum icon height",
  46.   SM_CXFRAME,       "SM_CXFRAME",       "Window frame width",
  47.   SM_CYFRAME,       "SM_CYFRAME",       "Window frame height",
  48.   SM_CXMINTRACK,    "SM_CXMINTRACK",    "Minimum tracking width of window",
  49.   SM_CYMINTRACK,    "SM_CYMINTRACK",    "Minimum tracking height of window",
  50.   SM_CMETRICS,      "SM_CMETRICS",      "Number of system metrics"
  51.   };
  52.   
  53.   
  54.   
  55.